home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / AEA / Source / Sources / Event Handlers / AEAHandlerOpenApp.cc < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  403 b   |  23 lines

  1. /*    ====================
  2.  *    AEAHandlerOpenApp.cc
  3.  *    ====================
  4.  */
  5.  
  6. #include "AEADebugging.h"
  7.  
  8. #include "AEAHandlerOpenApp.hh"
  9.  
  10. #include "AEADescAppleEvent.hh"
  11.  
  12.  
  13. AEAHandlerOpenApp::AEAHandlerOpenApp()
  14. : AEAHandler(kCoreEventClass, kAEOpenApplication)
  15. {
  16. }
  17.  
  18. void
  19. AEAHandlerOpenApp::HandleEventSelf(const AEADescAppleEvent &inAppleEvent, AEADescAppleEvent &outReply)
  20. {
  21.     NotifyAppOpenAppEvent();
  22. }
  23.